home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM5.FTP < prev    next >
Text File  |  1997-05-23  |  380b  |  19 lines

  1. :---------------------------------------------------------------------
  2. : exam5.ftp
  3. : iFTP example script, dialing PPP, run script
  4. :---------------------------------------------------------------------
  5.  
  6.   dialoptions /status
  7.   dial
  8.   if not success goto error
  9.  
  10.   call website
  11.   goto end
  12.  
  13. LABEL error
  14.   WriteError "Dial Error"
  15.  
  16. LABEL end
  17.   if carrier then Hangup
  18.  
  19.